home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-pattern-button.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  136 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Beveled pattern button for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ; ************************************************************************
  22. ; Changed on Feb 4, 1999 by Piet van Oostrum <piet@cs.uu.nl>
  23. ; For use with GIMP 1.1.
  24. ; All calls to gimp-text-* have been converted to use the *-fontname form.
  25. ; The corresponding parameters have been replaced by an SF-FONT parameter.
  26. ; ************************************************************************
  27.  
  28. (define (text-width extents)
  29.   (car extents))
  30.  
  31. (define (text-height extents)
  32.   (cadr extents))
  33.  
  34. (define (text-ascent extents)
  35.   (caddr extents))
  36.  
  37. (define (text-descent extents)
  38.   (cadr (cddr extents)))
  39.  
  40. (define (script-fu-beveled-pattern-button
  41.          text text-size font text-color pattern pressed)
  42.   (let* (
  43.         (text-extents (gimp-text-get-extents-fontname
  44.                        text text-size PIXELS font))
  45.         (ascent (text-ascent text-extents))
  46.         (descent (text-descent text-extents))
  47.  
  48.         (xpadding 8)
  49.         (ypadding 6)
  50.  
  51.         (width (+ (* 2 xpadding)
  52.                   (text-width text-extents)))
  53.         (height (+ (* 2 ypadding)
  54.                    (+ ascent descent)))
  55.  
  56.         (img (car (gimp-image-new width height RGB)))
  57.         (background (car (gimp-layer-new img width height RGBA-IMAGE "Background" 100 NORMAL-MODE)))
  58.         (bumpmap (car (gimp-layer-new img width height RGBA-IMAGE "Bumpmap" 100 NORMAL-MODE)))
  59.         (textl (car
  60.                 (gimp-text-fontname
  61.                  img -1 0 0 text 0 TRUE text-size PIXELS font)))
  62.         )
  63.  
  64.     (gimp-context-push)
  65.  
  66.     (gimp-image-undo-disable img)
  67.     (gimp-image-add-layer img background 1)
  68.     (gimp-image-add-layer img bumpmap 1)
  69.  
  70.     ; Create pattern layer
  71.  
  72.     (gimp-context-set-background '(0 0 0))
  73.     (gimp-edit-fill background BACKGROUND-FILL)
  74.     (gimp-context-set-pattern pattern)
  75.     (gimp-edit-bucket-fill background PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
  76.  
  77.     ; Create bumpmap layer
  78.  
  79.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  80.  
  81.     (gimp-context-set-background '(127 127 127))
  82.     (gimp-rect-select img 1 1 (- width 2) (- height 2) CHANNEL-OP-REPLACE FALSE 0)
  83.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  84.  
  85.     (gimp-context-set-background '(255 255 255))
  86.     (gimp-rect-select img 2 2 (- width 4) (- height 4) CHANNEL-OP-REPLACE FALSE 0)
  87.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  88.  
  89.     (gimp-selection-none img)
  90.  
  91.     ; Bumpmap
  92.  
  93.     (plug-in-bump-map RUN-NONINTERACTIVE img background bumpmap 135 45 2 0 0 0 0 TRUE pressed 0)
  94.  
  95.     ; Color and position text
  96.  
  97.     (gimp-context-set-background text-color)
  98.     (gimp-layer-set-lock-alpha textl TRUE)
  99.     (gimp-edit-fill textl BACKGROUND-FILL)
  100.  
  101.     (gimp-layer-set-offsets textl
  102.                             xpadding
  103.                             (+ ypadding descent))
  104.  
  105.     ; Clean up
  106.  
  107.     (gimp-image-set-active-layer img background)
  108.     (gimp-image-remove-layer img bumpmap)
  109.     (gimp-image-flatten img)
  110.  
  111.     (gimp-image-undo-enable img)
  112.     (gimp-display-new img)
  113.  
  114.     (gimp-context-pop)
  115.   )
  116. )
  117.  
  118.  
  119. (script-fu-register "script-fu-beveled-pattern-button"
  120.   _"B_utton..."
  121.   _"Create a beveled pattern button for webpages"
  122.   "Federico Mena Quintero"
  123.   "Federico Mena Quintero"
  124.   "July 1997"
  125.   ""
  126.   SF-STRING     _"Text"               "Hello world!"
  127.   SF-ADJUSTMENT _"Font size (pixels)" '(32 2 1000 1 10 0 1)
  128.   SF-FONT       _"Font"               "Sans"
  129.   SF-COLOR      _"Text color"         "black"
  130.   SF-PATTERN    _"Pattern"            "Wood"
  131.   SF-TOGGLE     _"Pressed"            FALSE
  132. )
  133.  
  134. (script-fu-menu-register "script-fu-beveled-pattern-button"
  135.                          "<Image>/File/Create/Web Page Themes/Beveled Pattern")
  136.